home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / scope / 076-100 / scopedisk81 / wkeys / wkeys.doc < prev    next >
Text File  |  1995-03-19  |  14KB  |  307 lines

  1. OVERVIEW:
  2.  
  3. WKEYS is a program that allows you to manipulate windows through the use of 
  4. keyboard function keys rather than by using the mouse.  This way, you can
  5. activate windows, move them from front to back and vice-versa, and move
  6. screens from front to back, all without having to move your hands from the
  7. keyboard, and without having to move windows around so that you can see their
  8. depth gadgets.  It also lets you move windows or screens that do not have
  9. depth gadgets.  WKEYS knows how to perform twelve different window and screen
  10. functions.  The key bindings are user definable, so you can make any key (or
  11. keys) perform any of the functions that you want.
  12.  
  13. HOW TO USE WKEYS:
  14.  
  15. To use WKEYS, you must have WKEYS in your C: directory (or the current PATH, 
  16. and WKEYS-HANDLER in your L: directory (or the current directory).  Once this 
  17. is done, simply type:
  18.  
  19.     1> wKeys
  20.  
  21. WKEYS should display a message telling you its version number and the date it
  22. was last modified.  Once this message is displayed, the window "hot-keys" will
  23. be active.  If you wish to de-activate the hot-keys, simply issue the WKEYS
  24. command again.  WKEYS should respond by telling you that the hot-keys have
  25. been removed.
  26.  
  27. WKEYS knows how to perform the following window and screen manipulation
  28. functions:
  29.  
  30.     Next-Window           Activates the window behind the currently-active one.
  31.  
  32.     Previous-Window       Activates the window above the currently-active one.
  33.  
  34.     Window-To-Front       Moves the current window to the front of the screen.
  35.  
  36.     Window-To-Back        Moves the current window to the back of the screen.
  37.  
  38.     Screen-To-Front       Moves the back-most screen to the front and activates
  39.                           its top-most window.
  40.  
  41.     Screen-To-Back        Moves the front screen to the back and activates
  42.                           the top-most window on the screen that is revealed.
  43.  
  44.     Back-Window-To-Front  Brings the back-most window to the front and 
  45.                           activates it.
  46.  
  47.     Front-Window-To-Back  Sends the top-most window to the back and activates
  48.                           the next window down (the new top window).
  49.  
  50.     Close-Window          Sends a CLOSEWINDOW message to the active window
  51.                           (provided the window accepts them, and is not
  52.                           a BACKDROP window).
  53.  
  54.     Window-To-Icon        Iconifies the current window (if wIconify is running).
  55.     
  56.     Icon-To-Window        Restores the window associated with the selected
  57.                           window icon (if wIconify is running).
  58.  
  59.     Select-Next-Icon      Selects the next window icon on the workbench.
  60.  
  61. By default, these are bound to the arrow keys when you are holding down the
  62. right amiga key, or the right amiga key and the right shift key in the
  63. following manner:
  64.  
  65.     RAmiga-LeftArrow:           Previous-Window
  66.     RAmiga-RightArrow:          Next-Window
  67.     RAmiga-DownArrow:           Window-To-Back
  68.     RAmiga-UpArrow:             Window-To-Front
  69.  
  70.     RShift-RAmiga-LeftArrow:    Back-Window-To-Front
  71.     RShift-RAmiga-RightArrow:   Front-Window-To-Back
  72.     RShift-RAmiga-DownArrow:    Screen-To-Back
  73.     RShift-RAmiga-UpArrow:      Screen-To-Front
  74.     
  75.     RAmiga-DELETE:              Close-Window
  76.     
  77.     RAmiga-RETURN:              Window-To-Icon
  78.     RAmiga-BACKSPACE:           Icon-To-Window
  79.     RAmiga-TAB:                 Select-Next-Icon
  80.  
  81. Note:  normally these keys cause the mouse pointer to move without your having 
  82. to move the mouse itself.  When the default WKEYS are in effect, however, you
  83. will have to use the LEFT amiga key (together with the arrow keys) to move the
  84. mouse pointer in this fashion.  If you prefer to use the right amiga key for 
  85. moving the pointer, you can use the WKEYS re-binding feature (see below) to
  86. change the default key bindings to something that better suits your tastes.
  87.  
  88. CHANGING THE DEFAULT KEY BINDINGS:
  89.  
  90. Not everyone finds the default WKEYS to be optimally placed on the keyboard. 
  91. For this reason, WKEYS allows you to specify which keys should perform what
  92. functions.  To do this, you must use a key-binding file.  You tell WKEYS what 
  93. key binding file you want to use by specifying its name when you call WKEYS.
  94. For instance:
  95.  
  96.     1> wKeys Alternate.Keys
  97.  
  98. would cause WKEYS to load the key bindings that are specified in the file
  99. named "Alternate.Keys" in the current directory.
  100.  
  101. A key-binding file is a standard ASCII text file that you create using any 
  102. text editor.  Each line binds a key to a function and should have the 
  103. following form:
  104.  
  105.     qualifiers-keyname:  function
  106.  
  107. where "qualifiers" is a (possibly empty) list of key-qualifier names, 
  108. "keyname" is the name of any key on the Amiga keyboard, and "function" is
  109. one of the eight functions listed above.  For example,
  110.  
  111.     F1: Screen-To-Front
  112.     LAmiga-F1: Screen-To-Back
  113.     SHIFT-CONTROL-N: Next-Window
  114.  
  115. all are legal key bindings.
  116.  
  117. The valid qualifier names are:
  118.  
  119.     LShift          left shift key
  120.     RShift          right shift key
  121.     CapsLock        caps-lock key
  122.     Control         CTRL key
  123.     LAlt            left ALT key
  124.     RAlt            right ALT key
  125.     LAmiga          left Amiga key
  126.     RAmiga          right Amiga key
  127.     NumericPad      the key is on the numeric keypad
  128.     Repeat          the key is being auto-repeated
  129.     Interrupt       (I don't know what it means, but it's in InputEvent.h)
  130.     MultiBroadCast  (ditto)
  131.     MButton         the middle mouse button is down (future expansion)
  132.     RButton         the right mouse button is down
  133.     LButton         the left mouse button is down
  134.     RelativeMouse   (a mouse movement was relative, not absolute)
  135.  
  136.     LCommand        same as LAmiga
  137.     RCommand        same as RAmiga
  138.     Shift           either shift key
  139.     Amiga           either Amiga key
  140.     Alt             either ALT key
  141.     
  142.     KeyUp           the key is being released
  143.  
  144. Qualifiers may be separated by spaces, commas, or dashes.
  145.  
  146. The key name can be either a single, printable, ASCII character (representing
  147. the key with that legend on it), or one of the following names:
  148.  
  149.     BACKSPACE, DELETE, ENTER, ESCAPE, HELP, RETURN, SPACE, TAB,
  150.     F1, F2, F3, F4, F5, F6, F7, F8, F9, F10,
  151.     KP0, KP1, KP2, KP3, KP5, KP5, KP6, KP7, KP8, KP9,
  152.     LEFTARROW, RIGHTARROW, DOWNARROW, UPARROW,
  153.     BS, DEL, ESC,  COLON, COMMA, DASH, DOT, MINUS,
  154.     CAPSLOCKKEY, CONTROLKEY, LALTKEY, LAMIGAKEY, LCOMMANDKEY, LSHIFTKEY,
  155.     RALTKEY, RCOMMANDKEY, RALTKEY, RSHIFTKEY
  156.  
  157. where "Fn" is a function key, "KPn" is a number key on the keypad, "DASH" is
  158. the dash on the main keyboard (the same key as the underscore), "DOT" is the
  159. keypad dot, and "MINUS" is the keypad minus key.  "CAPSLOCKKEY", etc. are
  160. the qualifier keys (for instance, you can make "RSHIFT-RALTKEY" map to some 
  161. function).
  162.  
  163. "COLON", "COMMA", and "DASH" are named because they are special characters
  164. within the key-binding file, and as such, can not be specified in the usual
  165. manner.
  166.  
  167. If you specify a single character name for a special symbol that requires a
  168. shift key to be pressed, the SHIFT qualifier is added automatically.  For
  169. example,  "CONTROL-*" and "CONTROL-SHIFT-*" are equivalent, as are "#" and
  170. "SHIFT-#".  Upper-case letters do not automatically include SHIFT, however.
  171. If you want an alphabetic key to require a shift key to be pressed, you must 
  172. explicitly include the SHIFT qualifier.
  173.  
  174. Note:  "NUMERICPAD-0" is NOT the same as "KP0".  The former specifies the zero
  175. key on the main keyboard with the NUMERICPAD qualifier set (a non-existant
  176. combination), whereas the latter specifies the numeric keypad zero key (with
  177. no particular qualifier keys required).
  178.  
  179. You can define as many key bindings as you want (more than one key can be
  180. bound to the same function).  Each key definition must be on its own line,
  181. however.
  182.  
  183. See the files DEFAULT.KEYS, ALTERNATE.KEYS, and STRANGE.KEYS for examples
  184. of some key binding files.
  185.  
  186. HOW WKEYS WORKS:
  187.  
  188. WKEYS installs an input handler into the chain of handlers called by the Input
  189. Device.  This handler is added at priority 51, so it receives input events 
  190. before Intuition does.  The input handler looks at each raw-key event and 
  191. compares it to the keys defined by WKEYS.  When it finds one that is defined, 
  192. it performs the function bound to that key and removes the raw-key event from 
  193. the event list.  When all the events have been checked, it passes the 
  194. (modified) list back to the input device, which passes it to Intuition for 
  195. further processing.
  196.  
  197. To close a window, WKEYS sends an IntuiMessage of class CLOSEWINDOW to the
  198. active window's UserPort.  The reply port for the message is setup so that
  199. the input handler can check for when it has been replied.
  200.  
  201. To iconify a window, WKEYS calls wIconify, which does the real work of 
  202. iconifying the window.  Special calls also allow WKEYS to request wIconify
  203. to restore a window and select the next icon.
  204.  
  205. When you call WKEYS, it creates an array of key bindings (either from the
  206. default bindings, or from the key-binding file that you specify).  Each key in
  207. the array takes up 8 bytes of memory.  WKEYS then calls LoadSeg() to load 
  208. WKEYS-HANDLER, which is the actual input handler, and passes it the key array.
  209. It installs WKEYS-HANDLER as an Input Device input handler, and then exits.
  210.  
  211. WKEYS uses a named, public message-port to store the address of the input
  212. handler and the key array.  When you call WKEYS a second time, it finds that
  213. public message-port and retrieves the pointers to the handler and key array,
  214. removes the handler, calles UnLoadSeg() on it, and deallocates the key array.
  215.  
  216. Since lots of keystrokes may go through the handler, and since most of those
  217. will not be one of the hot-keys, the handler must be able to determine as 
  218. quickly as possible whether a key event matches one of defined keys.  For this
  219. reason, the key array is sorted by key code and qualifiers, and is searched
  220. via a binary search method.  Thus, for example, when the eight default keys 
  221. are used, no more than three comparisons will need to be made to determine
  222. which hot-key, if any, has been pressed.  For sixteen keys, only four
  223. comparisons need be made.
  224.  
  225. HOW TO ADD YOUR OWN FUNCTIONS:
  226.  
  227. You can define your own hot-key functions by adding them into WKEYS-HANDLER.C 
  228. (just after the routine called FrontWindowToBack()).  Your routine should
  229. expect no parameters, and should return no value (i.e., it should be a
  230. function of type "void").  Your routine will be called from within the Input
  231. Handler, therefore, it should NOT call any function that might call Wait(). 
  232. This includes DOS calls, WaitIO(), LockLayers(), and all graphics primitives
  233. that could block while Layers are locked. 
  234.  
  235. Once your routine is added to the handler, include it at the end of the
  236. Action[] array in WKEYS-HANDLER.C and add a #define statement to WKEYS.H (at
  237. the bottom, just after FRONTTOBACK).  Then add an additional entry in the
  238. Action[] array in BINDWKEYS.C.  The character string is what you use within
  239. your key-binding file to specify your new function.  The code number is the
  240. number that you have #defined in WKEYS.H.  Be sure that your new entry is
  241. placed in the list so that the list remains in alphabetical order.
  242.  
  243. Once you have made these changes, you can use a key-binding file to bind keys
  244. to your new function just as though it was one of WKEYS' original functions. 
  245. You can change the default key-bindings to include your new function by
  246. following the instructions in the next section.
  247.  
  248. HOW TO CHANGE THE DEFAULT KEY BINDINGS:
  249.  
  250. The default key-bindings are stored in an array called DefaultKey[] in the
  251. file BINDWKEYS.C.  You can change the default key setup by changing this
  252. array (you can add new keys, remove old ones, or change the keys or qualifiers
  253. used for the current default keys).  The HOTKEY() macro is used to make
  254. defining keys easy.  You specify the qualifiers first (OR them together), then
  255. the keyboard scan-code for the key, then the function number (as #defined in
  256. WKEYS.H).  The DefaultKey[] array must be sorted by KeyCode.  This means that
  257. it is sorted by scan-code first, then qualifier value.  If you are specifying
  258. qualifiers other than RAMIGA and RSHIFT, you should add them to the HOTKEY()
  259. macro #define statement.
  260.  
  261. KNOWN PROBLEMS:
  262.  
  263. When you use the SHIFT qualifier, WKEYS really defines two key-bindings, one
  264. using LSHIFT and one using RSHIFT.  The AMIGA and ALT qualifiers produce
  265. similar results with the LAMIGA, RAMIGA, LALT, and RALT qualifiers.  Currently,
  266. you can not specify a key using more than one of these special, multi-key
  267. qualifiers (SHIFT, AMIGA, ALT).  Instead, you must explicitly define the keys
  268. in terms of LSHIFT, RSHIFT, LAMIGA, etc.  For example, SHIFT-AMIGA-N would
  269. have to be specified as LSHIFT-LAMIGA-N, LSHIFT-RAMIGA-N, RSHIFT-LAMIGA-N, and 
  270. RSHIFT-RAMIGA-N.  Note that some keyboard symbols implicity include the SHIFT
  271. qualifier, as described above ("#" is the same as "SHIFT-#").
  272.  
  273. COMPILING AND LINKING WKEYS:
  274.  
  275. WKEYS was developed using Lattice C version 3.10.  I have tried to use longs
  276. when required by the Manx Aztec C compiler, but I do not own a copy of it,
  277. so I can not verify that WKEYS will compile properly with it.
  278.  
  279. To compile and link WKEYS, type:
  280.  
  281.     1> lc -v -r wKeys wKeys-Handler BindWKeys mSort wIconCalls
  282.     1> asm HandlerStub
  283.     1> blink with wKeys.lnk
  284.     1> blink with wKeys-Handler.lnk
  285.  
  286. The -v is required to suppress stack checking (since the handler will run
  287. on the Input Device's stack), but the -r is optional.
  288.  
  289. wIconCalls.c is distributed with the rest of the wIconify source.  It is the 
  290. programmer's interface to wIconify.
  291.  
  292. Place wKeys in your C: directory, and wKeys-Handler in your L: directory.
  293.  
  294. If you compile BindWKeys with -dNO_FILE, the file-reading code will not be
  295. included in the executable.  In this case, you will not be able to load key
  296. bindings from a file, but the program will be smaller, and will execute
  297. faster.  You can change the default key bindings as described above to make
  298. the stripped-down version load with your favorite key-bindings.
  299.  
  300. AUTHOR:
  301.  
  302. Davide P. Cervone
  303. University of Rochester Computing Center           dpvc@tut.cc.rochester.EDU
  304. Taylor Hall                                        dpvc@ur-tut.UUCP
  305. Rochester, New York  14627                         DPVC@UORDBV.BITNET
  306. (716) 275-2811
  307.